home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / sun4.md / netIECmd.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  4KB  |  143 lines

  1. /* netIECmd.c -
  2.  *
  3.  * Routines to execute commands for the Intel 82586 device driver.
  4.  *
  5.  * Copyright 1985, 1988 Regents of the University of California
  6.  * Permission to use, copy, modify, and distribute this
  7.  * software and its documentation for any purpose and without
  8.  * fee is hereby granted, provided that the above copyright
  9.  * notice appear in all copies.  The University of California
  10.  * makes no representations about the suitability of this
  11.  * software for any purpose.  It is provided "as is" without
  12.  * express or implied warranty.
  13.  */
  14.  
  15. #ifndef lint
  16. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/net/sun4.md/netIECmd.c,v 9.3 91/09/10 18:40:56 rab Exp $ SPRITE (Berkeley)";
  17. #endif
  18.  
  19. #include <sprite.h>
  20. #include <sys.h>
  21. #include <list.h>
  22. #include <vm.h>
  23. #include <sync.h>
  24. #include <netIEInt.h>
  25.  
  26.  
  27. /*
  28.  *----------------------------------------------------------------------
  29.  *
  30.  * NetIECheckSCBCmdAccept --
  31.  *
  32.  *    Check to see if the scb command was accepted.  Panic if not accepted.
  33.  *    This routine is always called with interrupts disabled.
  34.  *
  35.  * Results:
  36.  *    None.
  37.  *
  38.  * Side effects:
  39.  *    None.
  40.  *
  41.  *----------------------------------------------------------------------
  42.  */
  43.  
  44. void
  45. NetIECheckSCBCmdAccept(scbPtr)
  46.     volatile NetIESCB    *scbPtr;
  47. {
  48.     int     i;
  49.  
  50.     for (i = 0; i < 5; i++) {
  51.     NET_IE_DELAY((*(short *) scbPtr->cmdWord == 0));
  52.  
  53.     if (*(short *) scbPtr->cmdWord != 0) {
  54.         printf( "Intel: scb command not accepted\n");
  55.     } else {
  56.         return;
  57.     }
  58.     }
  59.     panic( "Intel: scb command not accepted\n");
  60. }
  61.  
  62.  
  63. /*
  64.  *----------------------------------------------------------------------
  65.  *
  66.  * NetIEExecCommand --
  67.  *
  68.  *    Execute a simple Intel command.  This is done by executing the command
  69.  *    and then waiting until it completes.
  70.  *
  71.  * Results:
  72.  *    None.
  73.  *
  74.  * Side effects:
  75.  *    None.
  76.  *
  77.  *----------------------------------------------------------------------
  78.  */
  79.  
  80. void
  81. NetIEExecCommand(cmdPtr, statePtr)
  82.     register volatile NetIECommandBlock    *cmdPtr;
  83.     NetIEState        *statePtr;
  84. {
  85.     /*
  86.      * Initialize the command header.
  87.      */
  88.  
  89.     *(short *) cmdPtr = 0;    
  90.     /* 
  91.      * Mark this as the end of the list. 
  92.      */
  93.     NetBfShortSet(cmdPtr->bits, EndOfList, 1); 
  94.     /* 
  95.      * Have the command unit interrupt us when it is done.
  96.  
  97.      */
  98.     NetBfShortSet(cmdPtr->bits, Interrupt, 1); 
  99.  
  100.     /*
  101.      * Start the command unit.
  102.      */
  103.  
  104.     NetBfShortSet(statePtr->scbPtr->cmdWord, CmdUnitCmd, NET_IE_CUC_START); 
  105.     NET_IE_CHANNEL_ATTENTION(statePtr);
  106.     NetIECheckSCBCmdAccept(statePtr->scbPtr);
  107.  
  108.     /*
  109.      * Wait for the command to complete.
  110.      */
  111.  
  112.     NET_IE_DELAY(NetBfShortTest(cmdPtr->bits, CmdDone, 1) && 
  113.          NetBfShortTest(statePtr->scbPtr->statusWord, CmdDone, 1) &&
  114.              NetBfShortTest(statePtr->scbPtr->statusWord, CmdUnitNotActive,
  115.              1));
  116.     if (NetBfShortTest(cmdPtr->bits, CmdDone, 0) ||
  117.         NetBfShortTest(statePtr->scbPtr->statusWord, CmdDone, 0) ||
  118.     NetBfShortTest(statePtr->scbPtr->statusWord, CmdUnitNotActive, 0)) {
  119.  
  120.     int cmdCmdDone;
  121.     int statusCmdDone;
  122.     int cmdNotActive;
  123.     cmdCmdDone = NetBfShortGet(cmdPtr->bits, CmdDone);
  124.     statusCmdDone = NetBfShortGet(statePtr->scbPtr->statusWord, CmdDone);
  125.     cmdNotActive = NetBfShortGet(statePtr->scbPtr->statusWord, 
  126.         CmdUnitNotActive);
  127.     panic( "Intel: Could not execute a simple command: %d %d %d\n", 
  128.             cmdCmdDone, statusCmdDone, cmdNotActive);
  129.     return;
  130.     }
  131.  
  132.     /*
  133.      * Ack the the command completion and the command unit going not active.
  134.      */
  135.  
  136.     NetBfShortSet(statePtr->scbPtr->cmdWord, AckCmdDone, 1);
  137.     NetBfShortSet(statePtr->scbPtr->cmdWord, AckCmdUnitNotActive, 1);
  138.  
  139.     NET_IE_CHANNEL_ATTENTION(statePtr);
  140.     NetIECheckSCBCmdAccept(statePtr->scbPtr);
  141.     return;
  142. }
  143.